home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 September / september_2000.iso / intercd / root / ^Linux / cdrecord-1.8.1 / README.gmake < prev    next >
Encoding:
Text File  |  1998-10-17  |  1006 b   |  29 lines

  1. Gmake compliance is included for convenience because it may
  2. be found on many systems and most make programs are worse
  3. than gmake.
  4.  
  5. If you have problems with the make file system and gmake,
  6. you are out of luck. Gmake has a debug option, but it gives
  7. tons of debug messages. Less than 1% of these debug messages are
  8. useful. Important things are missing in these debug messages.
  9.  
  10. Gmake has bug with the VPATH= option. Some of the macros are
  11. not expanded correctly. I had to remove all occurrences of
  12. $@ $* and $^ on some places for this reason.
  13.  
  14. On some platforms (e.g. OSF1), gmake is not able to correctly recognize
  15. the default target. If gmake complains about this, call ./Gmake all
  16.  
  17. To use GNU make create a file called 'Gmake' in you search path
  18. that contains:
  19.  
  20. #!/bin/sh
  21. MAKEPROG=gmake
  22. export MAKEPROG
  23. exec gmake "$@"
  24.  
  25. and call 'Gmake' instead of gmake. On Linux there is no gmake, 'make'
  26. on Linux is really a gmake.
  27.  
  28. 'Gmake' and 'Gmake.linux' are part of this distribution.
  29.